home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / betterinternet_detection.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  71 lines

  1. #
  2. # Copyright (C) 2004 Tenable Network Security 
  3. #
  4. #
  5.  
  6. if(description)
  7. {
  8.  script_id(12011);
  9.  script_version("$Revision: 1.2 $");
  10.  
  11.  name["english"] = "BETTERINTERNET detection";
  12.  
  13.  script_name(english:name["english"]);
  14.  
  15.  desc["english"] = "
  16. The remote host is using the BETTERINTERNET program.  
  17. You should ensure that:
  18. - the user intended to install BETTERINTERNET (it is sometimes silently 
  19. installed)
  20. - the use of BETTERINTERNET matches your corporate mandates and security 
  21. policies.
  22.  
  23. To remove this sort of software, you may wish to check out ad-aware or spybot. 
  24.  
  25.  
  26. See also : http://pestpatrol.com/PestInfo/v/vx2_h_abetterinternet.asp 
  27. Solution : Uninstall this software
  28. Risk factor : High";
  29.  
  30.  
  31.  
  32.  script_description(english:desc["english"]);
  33.  
  34.  summary["english"] = "BETTERINTERNET detection";
  35.  
  36.  script_summary(english:summary["english"]);
  37.  
  38.  script_category(ACT_GATHER_INFO);
  39.  
  40.  script_copyright(english:"This script is Copyright (C) 2004 Tenable Network Security");
  41.  family["english"] = "Windows";
  42.  script_family(english:family["english"]);
  43.  
  44.  script_dependencies("smb_registry_full_access.nasl");
  45.  script_require_keys("SMB/registry_full_access");
  46.  
  47.  script_require_ports(139, 445);
  48.  exit(0);
  49. }
  50.  
  51.  
  52. # start the script
  53.  
  54. path[0] = "software\classes\clsid\{ddffa75a-e81d-4454-89fc-b9fd0631e726}";
  55. path[1] = "software\dbi";
  56. path[2] = "software\microsoft\code store database\distribution units\{30000273-8230-4dd4-be4f-6889d1e74167}";
  57. path[3] = "software\microsoft\windows\currentversion\shell extensions\approved\{ddffa75a-e81d-4454-89fc-b9fd0631e726}";
  58. path[4] = "software\microsoft\windows\currentversion\uninstall\dbi";
  59.  
  60.  
  61.  
  62. include("smb_nt.inc");
  63. if ( ! get_kb_item("SMB/registry_full_access") ) exit(0);
  64.  
  65. for (i=0; path[i]; i++) {
  66.        val = registry_key_exists(key:path[i]);
  67.        if(val != NULL) {security_hole(kb_smb_transport()); exit(0); } 
  68. }
  69.  
  70.  
  71.